/*==============================
SHERAZ YARN TRADERS
STYLE.CSS PART-1
===============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#333;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==============================
HEADER
===============================*/

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:#111;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo h2{
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#d4af37;
}

nav ul{
    display:flex;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    color:#fff;
    font-size:16px;
    font-weight:500;
    transition:.4s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#d4af37;
}
/*==================================
PRODUCTS HERO
==================================*/

.products-hero{
    height:55vh;
    width:100%;
    
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("pro.png");
    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.products-hero h1{
    color:white;
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.products-hero p{
    color: white;
    font-size:20px;
    max-width:800px;
    margin:auto;
}



/*==================================
PRODUCT INTRODUCTION
==================================*/

.product-intro{
    padding:100px 0;
    background:#fff;
}


.product-intro .container{

    display:flex;
    align-items:center;
    gap:60px;

}


.intro-left{

    flex:1;

}


.intro-left h4{

    color:#d4af37;
    font-size:22px;
    margin-bottom:10px;

}


.intro-left h2{

    font-size:42px;
    color:#111;
    margin-bottom:25px;

}


.intro-left p{

    color:#666;
    line-height:30px;
    margin-bottom:20px;

}


.intro-right{

    flex:1;

}


.intro-right img{

    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

}



/*==================================
PRODUCT CARDS
==================================*/

.products-list{

    padding:100px 0;
    background:#f7f7f7;

}


.products-list .container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;

}



.product-card{

    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;

}


.product-card:hover{

    transform:translateY(-10px);

}



.product-card img{

    width:100%;
    height:310px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:25px;

}



.product-card h2{

    font-size:28px;
    color:#111;
    margin-bottom:15px;

}



.product-card p{

    color:#666;
    line-height:28px;
    margin-bottom:25px;

}



.product-card .btn{

    color: #111;
    display:inline-block;

}

.product-card .btn:hover{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
    margin-right:10px;
}



/*==================================
PRODUCT FEATURES
==================================*/

.product-features{

    padding:90px 0;
    background:#111;

}


.product-features .container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

}



.feature-box{

    background:#1c1c1c;
    padding:35px 20px;
    text-align:center;
    border-radius:15px;
    transition:.4s;

}



.feature-box:hover{

    background:#d4af37;
    transform:translateY(-10px);

}


.feature-box i{

    color:#d4af37;
    font-size:45px;
    margin-bottom:20px;

}



.feature-box:hover i{

    color:#111;

}



.feature-box h3{

    color:#fff;
    margin-bottom:15px;

}



.feature-box:hover h3{

    color:#111;

}



.feature-box p{

    color:#ccc;

}



.feature-box:hover p{

    color:#111;

}


/*==================================
QUALITY SECTION
==================================*/

.quality{

    padding:100px 0;
    background:#fff;

}


.quality .container{

    display:flex;
    align-items:center;
    gap:60px;

}


.quality-left{

    flex:1;

}


.quality-right{

    flex:1;

}


.quality-left h4{

    color:#d4af37;
    font-size:22px;
    margin-bottom:10px;

}


.quality-left h2{

    font-size:42px;
    color:#111;
    margin-bottom:20px;

}


.quality-left p{

    color:#666;
    line-height:30px;
    margin-bottom:25px;

}


.quality-left ul{

    list-style:none;

}


.quality-left ul li{

    margin-bottom:15px;
    font-size:17px;
    font-weight:500;

}


.quality-left ul li i{

    color:#d4af37;
    margin-right:12px;

}


.quality-right img{

    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

}



/*==================================
WORKING PROCESS
==================================*/

.process{

    padding:100px 0;
    background:#f7f7f7;
    text-align:center;

}


.process h4{

    color:#d4af37;
    font-size:22px;

}


.process h2{

    font-size:42px;
    margin:15px 0 50px;

}



.process-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}



.process-box{

    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;

}


.process-box:hover{

    transform:translateY(-10px);

}



.process-box span{

    display:inline-flex;
    width:60px;
    height:60px;
    justify-content:center;
    align-items:center;
    background:#d4af37;
    color:#111;
    border-radius:50%;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;

}



.process-box h3{

    font-size:24px;
    margin-bottom:15px;

}


.process-box p{

    color:#666;
    line-height:26px;

}



/*==================================
PRODUCT CTA
==================================*/

.product-cta{

    padding:90px 0;
    background:#111;
    text-align:center;

}


.product-cta h2{

    color:#fff;
    font-size:42px;
    margin-bottom:20px;

}


.product-cta p{

    color:#ddd;
    max-width:800px;
    margin:0 auto 35px;
    line-height:30px;

}



/*==================================
RESPONSIVE DESIGN
==================================*/


@media(max-width:991px){


.product-intro .container,
.quality .container{

    flex-direction:column;

}


.intro-left,
.intro-right,
.quality-left,
.quality-right{

    width:100%;

}


}


@media(max-width:768px){


.products-hero{

    height:45vh;

}


.products-hero h1{

    font-size:38px;

}


.products-hero p{

    font-size:16px;

}


.intro-left h2,
.quality-left h2,
.process h2,
.product-cta h2{

    font-size:30px;

}


.product-card img{

    height:200px;

}


}

.product-cta a{

    color: #d4af37;
}
@media(max-width:576px){


.products-hero h1{

    font-size:30px;

}


.products-hero p{

    font-size:15px;

}


.intro-left p,
.quality-left p{

    text-align:left;

}


.product-cta{

    padding:70px 20px;

}


.product-cta h2{

    font-size:26px;

}


}



footer{
    background:#111;
    color:#fff;
    padding:70px 0 20px;
}

footer .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-box h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-box p{
    color:#ccc;
    margin-bottom:12px;
    line-height:28px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ccc;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#d4af37;
    padding-left:8px;
}

.footer-box i{
    color:#d4af37;
    margin-right:10px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    color:#aaa;
}


/*=============================
WHATSAPP BUTTON
=============================*/

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}


/*=============================
SCROLLBAR
=============================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}


/*=============================
SECTION TITLE
=============================*/

section h2{
    font-weight:700;
}

section h4{
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}


/*=============================
ANIMATION
=============================*/

.card,
.service-box,
.why-box,
.about-image img{
    transition:.4s ease;
}

.about-image img:hover{
    transform:scale(1.03);
}

.card:hover,
.service-box:hover{
    transform:translateY(-10px);
}


/*=============================
RESPONSIVE
=============================*/

@media(max-width:991px){

header .container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav ul{
    margin-top:20px;
    flex-wrap:wrap;
    justify-content:center;
}

nav ul li{
    margin:10px 15px;
}

.hero h1{
    font-size:45px;
}

.hero h2{
    font-size:24px;
}

.about .container{
    flex-direction:column;
}

.about-image{
    margin-bottom:40px;
}

}

@media(max-width:768px){

.hero{
    padding:120px 20px;
    height:auto;
}

.hero h1{
    font-size:35px;
}

.hero h2{
    font-size:22px;
}

.hero p{
    font-size:16px;
}

.btn,
.btn2{
    display:block;
    width:220px;
    margin:15px auto;
}

.products h2,
.services h2,
.why h2,
.contact-home h2,
.about h2{
    font-size:32px;
}

.counter .container{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:576px){

.logo h2{
    font-size:22px;
}

.hero h1{
    font-size:28px;
}

.hero h3{
    font-size:20px;
}

.hero h2{
    font-size:18px;
}

.hero p{
    font-size:15px;
}

.counter .container{
    grid-template-columns:1fr;
}

footer .container{
    grid-template-columns:1fr;
}

}